2f215d9ac196b1ad4c213349b814bd293dc5e282,server/src/main/java/org/jboss/as/server/moduleservice/ModuleLoadService.java,ModuleLoadService,start,#StartContext#,61

Before Change


    @Override
    public synchronized void start(StartContext context) throws StartException {
        try {
            module = serviceModuleLoader.getValue().loadModule(moduleSpec.getValue().getModuleIdentifier());
            serviceModuleLoader.getValue().relinkModule(module);

        } catch (ModuleLoadException e) {

After Change


    public synchronized void start(StartContext context) throws StartException {
        try {
            final ServiceModuleLoader moduleLoader = serviceModuleLoader.getValue();
            final Module module = moduleLoader.loadModule(moduleSpec.getValue().getModuleIdentifier());
            moduleLoader.relinkModule(module);
            for (ModuleIdentifier id : dependencies) {
                String val = moduleLoader.loadModule(id).getProperty("jboss.api");